home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / lame_src / get_audio.h < prev    next >
C/C++ Source or Header  |  2000-01-01  |  2KB  |  80 lines

  1. /*
  2. ** Copyright (C) 1999 Albert Faber
  3. **  
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Library General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the GNU
  12.  * Library General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Library General Public
  15.  * License along with this library; if not, write to the
  16.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.  * Boston, MA 02111-1307, USA.
  18.  */
  19.  
  20.  
  21. #ifndef GET_AUDIO_H_INCLUDED
  22. #define GET_AUDIO_H_INCLUDED
  23.  
  24. #if (defined LIBSNDFILE || defined LAMESNDFILE)
  25.  
  26.  
  27.  
  28. void CloseSndFile(sound_file_format, FILE *);
  29. FILE * OpenSndFile(lame_global_flags *gfp);
  30.  
  31. int get_audio(lame_global_flags *gfp,short buffer[2][1152],int stereo);
  32.  
  33.  
  34.  
  35. #ifdef LIBSNDFILE
  36. /* INCLUDE the sound library header file */
  37. #ifdef _MSC_VER
  38.     /* one byte alignment for WIN32 platforms */
  39.     #pragma pack(push,1)
  40.     #include "./libsndfile/src/sndfile.h"
  41.     #pragma pack(pop,1)
  42. #else
  43.     #include "sndfile.h"
  44. #endif
  45.  
  46.  
  47. #else
  48. /*****************************************************************
  49.  * LAME/ISO built in audio file I/O routines 
  50.  *******************************************************************/
  51. #include "portableio.h"
  52. #include "ieeefloat.h"
  53.  
  54.  
  55. typedef struct  blockAlign_struct {
  56.     unsigned long   offset;
  57.     unsigned long   blockSize;
  58. } blockAlign;
  59.  
  60. typedef struct  IFF_AIFF_struct {
  61.     short           numChannels;
  62.     unsigned long   numSampleFrames;
  63.     short           sampleSize;
  64.     FLOAT           sampleRate;
  65.     unsigned long   sampleType;
  66.     blockAlign      blkAlgn;
  67. } IFF_AIFF;
  68.  
  69. extern int            aiff_read_headers(FILE*, IFF_AIFF*);
  70. extern int            aiff_seek_to_sound_data(FILE*);
  71. extern int            aiff_write_headers(FILE*, IFF_AIFF*);
  72. extern int parse_wavheader(void);
  73. extern int parse_aiff(const char fn[]);
  74. extern void   aiff_check(const char*, IFF_AIFF*, int*);
  75.  
  76.  
  77. #endif    /* ifndef _LIBSNDDLL */
  78. #endif  /* ifdef LAMESNDFILE or LIBSNDFILE */
  79. #endif    /* ifndef GET_AUDIO_H_INCLUDED*/
  80.